Dynomotion

Group: DynoMotion Message: 203 From: babinda01 Date: 3/10/2010
Subject: KMotionCNC Vs Mach3
Hi Tom
I am waiting for my customer to arrive to give me his blessings on the first machine I have just built for him, and I thought I might try comparing cycle times between mach3 and KMotionCNC (I'm killing time - and I thought it might be an interesting test for the smoothness and speed of both systems).

So I am going to copy my gcode file from mach and put in the correct offsets for my 4 different fixtures, in mach3 this was done in a fixture table but now I will need to put these at the start of my gcode program like this:

G10 L2 P2 X111 Z111 A111
G10 L2 P3 X222 Z222 A222
G10 L2 P4 X333 Z333 A333
G10 L2 P5 X333 Z333 A333


And then in my program I can just call a G55, G56, G57 and a G58 as required, is that correct???? Can I define a A axis offset as in my example (the docs only show x, y and z)???

Next, can I use the same init program I had for mach with the KmotionCNC???

And then I just need to enter in my counts/inch, vel in/sec and Accel in/sec/sec - to do this I can take my setting from mach and convert them to inches (instead of mm), is that correct???

Add the correct io bits for spindles and coolant etc.

Is there anything else you can think of I will need to setup??


I will let you know the results.

Regards
Andrew
Group: DynoMotion Message: 204 From: Tom Kerekes Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Andrew,
 
That should be a very interesting test.  I think the answer to every question is yes.
 
When using KMotionCNC Rapids and Jogging are performed with limited Jerk using the the Jerk, Vel, and Accel setings in KMotion in counts units, so make sure those are set reasonably.
 
There are also some Trajectory Planner Settings.  See:
 
Thanks!
TK
 
 
Group: DynoMotion Message: 205 From: babinda01 Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Tom
I have run into a couple of minor problem, I can't get my arcs to work properly in G18 Mode, so i have changed my machine to work in G17 (reassigned Z as Y), so now I have the program simulating fine. I modified the DEFAULT setup file to include
axis_offset_a 0.0
but now when I try to run the program I get a error about the attribute axis_offset_a. Do I need to assign this attribute somewhere???

Also I can't seem to get my rapid speed up high (G00), in my setup file I have played with the traverse speed but it doesn't seem to make any difference. What is the traverse speed in units/min?? Is there somewhere else set the rapid speed?? I can jog at a HUGE speed but G00 is like a snail....

Regards
Andrew
Group: DynoMotion Message: 206 From: Tom Kerekes Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Andrew,
 
It looks like the DEFAULT setup file parser doesn't allow setting a,b,c offsets.  We can add that.  But the variable should default to zero anyway, so just delete that line if zero works for you.
 
I think you might be able to set them as Variables also as a workaround in the emc.var file.  The source code maps them as:
 
 settings->axis_offset_x = pars[5211];
 settings->axis_offset_y = pars[5212];
 settings->axis_offset_z = pars[5213];
 settings->AA_axis_offset = pars[5214];
 settings->BB_axis_offset = pars[5215];
 settings->CC_axis_offset = pars[5216];

The G0 rapid speed (and acceleration and jerk) is set in the KFlop parameters on the Step Response Screen in KMotion.exe (and your Init program).  The units are in counts/sec.  So you will get the same speed as if you did a move from KMotion.exe.  Jogging uses the Jog speeds set in the KMotion Tool Setup Screen, but the acceleration and Jerk from KMotion.exe, so maybe your speed is the only thing set low.
 
I thought we had G18 G19 working correctly (we changed it about 10 times before we got it right).
Thanks
TK

Group: DynoMotion Message: 207 From: babinda01 Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Tom
Setting A to 0 is fine by me, but, if I don't have anything in the setup file for A axis, how do you get A axis to work from GCode?
I originally tried the DEFAULT settings and the MM settings, but when it gets to the first A axis move in my gcode, the software finishes the A axis move and then just sits there doing nothing (waiting for something???) If I hit the stop button, I get a message about an incorrect GCode. So this is when I thought I needed to declare the A axis somewhere.

I have my speed issue sorted I think.

Regards
Andrew


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Andrew,
>
> It looks like the DEFAULT setup file parser doesn't allow setting a,b,c offsets.  We can add that.  But the variable should default to zero anyway, so just delete that line if zero works for you.
>
> I think you might be able to set them as Variables also as a workaround in the emc.var file.  The source code maps them as:
>
>  settings->axis_offset_x = pars[5211];
>  settings->axis_offset_y = pars[5212];
>  settings->axis_offset_z = pars[5213];
>  settings->AA_axis_offset = pars[5214];
>  settings->BB_axis_offset = pars[5215];
>  settings->CC_axis_offset = pars[5216];
>
> The G0 rapid speed (and acceleration and jerk) is set in the KFlop parameters on the Step Response Screen in KMotion.exe (and your Init program).  The units are in counts/sec.  So you will get the same speed as if you did a move from KMotion.exe.  Jogging uses the Jog speeds set in the KMotion Tool Setup Screen, but the acceleration and Jerk from KMotion.exe, so maybe your speed is the only thing set low.
>
> I thought we had G18 G19 working correctly (we changed it about 10 times before we got it right).
> Thanks
> TK
>
>
>
> ________________________________
> From: babinda01 <a_k@...>
> To: DynoMotion@yahoogroups.com
> Sent: Wed, March 10, 2010 6:44:17 PM
> Subject: [DynoMotion] Re: KMotionCNC Vs Mach3
>
>  
> Hi Tom
> I have run into a couple of minor problem, I can't get my arcs to work properly in G18 Mode, so i have changed my machine to work in G17 (reassigned Z as Y), so now I have the program simulating fine. I modified the DEFAULT setup file to include
> axis_offset_ a 0.0
> but now when I try to run the program I get a error about the attribute axis_offset_ a. Do I need to assign this attribute somewhere???
>
> Also I can't seem to get my rapid speed up high (G00), in my setup file I have played with the traverse speed but it doesn't seem to make any difference. What is the traverse speed in units/min?? Is there somewhere else set the rapid speed?? I can jog at a HUGE speed but G00 is like a snail....
>
> Regards
> Andrew
>
Group: DynoMotion Message: 208 From: babinda01 Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Tom

I have managed to get the KmotionCNC running my program. Compared to Mach3 I was getting 1Min16Sec cycle times with your software and exactly the same gcode file 48Sec, which is a quite a difference. The only problem is the engraving didn't work so well, mainly because the M7 and M8 didn't happen quick enough (these codes extend an engraving head, which may need to actuate quite quickly). Even so with a bit of tweaking I think I can get an improvement over mach3.

Regards
Andrew
Group: DynoMotion Message: 209 From: Tom Kerekes Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Andrew,
 
Could you describe the Gcode?  Are there lots of short vectors?  I think the KMotionCNC trajectory planner handles constant velocity through smooth paths made of tiny vectors better than Mach3.
 
You might assign the M7 M8 codes to KFlop Programs that activate the bits and include a delay, then select Exec/Wait so KMotionCNC will wait for the program with a delay to finish.
 
Thanks
TK

Group: DynoMotion Message: 210 From: babinda01 Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Tom
The gcode is basically in 2 parts, firstly there is engraving on a key blank. This is done in the X and Z axis, engraving is quite small - I fit 3 lines of text in 8mm of height, so each letter is approx 2mm high. The letters are quite simple, but not made up of little short lines for example a P is one vertical line and then a small horizontal line followed by an arc and then finished with another short line. The second part of the engraving is on the barrel of the lock, this is done in the X and A axis (engraving around the barrels circumference), so for this I break all arcs into .1mm line segments.
I will try the m7 and M8 as a c program with a delay added to see if this helps.

Regards

Andrew
Group: DynoMotion Message: 211 From: babinda01 Date: 3/10/2010
Subject: Re: KMotionCNC Vs Mach3
Hi Tom

I have just re-read my original post, I meant that your software was quicker than Mach3.

Regards
Andrew